/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}
ul.navigation {

list-style-type: none;

margin: 0;

padding: 0;

overflow: hidden;

background-color: #333;

}

li.navigation {

float: left;

}

li.navigation a {

display: block;

color: white;

text-align: center;

padding: 14px 16px;

text-decoration: none;

}

/* Change the link color to #111 (black) on hover. Thank you to W3C schools for navbar! */

li.navigation a:hover {

background-color: #111;

}